sync.Map.dirty (field)
20 uses
sync (current package)
map.go#L59: dirty map[any]*entry
map.go#L131: e, ok = m.dirty[key]
map.go#L217: m.dirty[key] = e
map.go#L220: } else if e, ok := m.dirty[key]; ok {
map.go#L230: m.dirty[key] = newEntry(value)
map.go#L280: e, ok = m.dirty[key]
map.go#L281: delete(m.dirty, key)
map.go#L347: m.dirty[key] = e
map.go#L353: } else if e, ok := m.dirty[key]; ok {
map.go#L365: m.dirty[key] = newEntry(value)
map.go#L388: } else if e, ok := m.dirty[key]; ok {
map.go#L414: e, ok = m.dirty[key]
map.go#L463: read = readOnly{m: m.dirty}
map.go#L465: m.dirty = nil
map.go#L484: if m.misses < len(m.dirty) {
map.go#L487: m.read.Store(&readOnly{m: m.dirty})
map.go#L488: m.dirty = nil
map.go#L493: if m.dirty != nil {
map.go#L498: m.dirty = make(map[any]*entry, len(read.m))
map.go#L501: m.dirty[k] = e
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |